home *** CD-ROM | disk | FTP | other *** search
- rem INSTALL.BAT
- echo off
- cls
- echo.
- echo. INSTALL TO HARD DISK (C:)
- echo.
- echo. This INSTALL.BAT file will copy all program files to a
- echo. subdirectory on a hard disk C from a floppy in drive A.
- echo. It does the following:
- echo.
- echo. C: change to the C drive
- echo. md OLYMPIAD make the subdirectory OLYMPIAD
- echo. cd OLYMPIAD change the current directory to OLYMPIAD
- echo. xcopy A:\*.* copy everything on the A drive to OLYMPIAD
- echo.
- echo. The above commands can also be entered by hand, as is, or
- echo. changed for your drive letters and desired subdirectory.
- echo. Press the Print Screen Key to print a copy for reference.
- echo.
- choice /c:YN ...Install...
-
- if errorlevel 2 goto END
- if errorlevel 1 goto DOIT
-
- :DOIT
- rem echo. doit
- C:
- md OLYMPIAD
- cd OLYMPIAD
- xcopy A:\*.*
- goto END
-
- :END
- rem echo. end
-
-
-